summaryrefslogtreecommitdiffstats
path: root/private/makefile
blob: 104051209e161b8a5652b71c1c0c912d3dd308d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
all: nt.bsc
!IF "$(BUILDMSG)" != ""
    echo $(BUILDMSG)
!ENDIF

nt.bsc:
!IF "$(BROWSER_INFO)" == "yes"
    where /r . *.sbr >sbrfiles
    pwbrmake -o nt.bsc @sbrfiles
    del sbrfiles

!ENDIF

clean: cleanbsc all

cleanbsc:
!IF "$(BROWSER_INFO)" == "yes"
    -erase nt.bsc

!ENDIF